home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-21 | 731 b | 39 lines | [TEXT/MPS ] |
- /*
- File: ExampleLibrary.exp
-
- Contains: Export declarations for ExampleLibrary
-
- Copyright: © 1992-1993 by Apple Computer, Inc., all rights reserved.
-
- */
-
- #include <Version.h>
- #include "ExampleClass.h"
- #include <LibraryManager.h>
-
- #define kExampleLibID "appl$ExampleLibrary,1.1"
-
- Library
- {
- id = kExampleLibID;
- version = 1.1;
- memory = client;
- flags=segunload;
- };
-
- Class TExampleClass
- {
- flags = newobject;
- };
-
- FunctionSet ExampleFSet
- {
- id = kExampleFunctionSet;
- //
- // We could use the following export line, but we want all exported
- // functions from the library to be exported, so we say nothing!
- //
- // exports = Hello, extern HelloC, pascal extern HelloPascal, Goodbye,
- // pascal GoodbyePascal, TExampleClass::Test;
- };
-